home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
lists
/
mint
/
l_0399
/
381
/
nlist.zoo
/
nlist.h
< prev
Wrap
C/C++ Source or Header
|
1993-06-16
|
247b
|
20 lines
#ifndef _NLIST_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
struct nlist
{
char *n_name;
unsigned short n_type;
long n_value;
};
__EXTERN int nlist __PROTO((char *file, struct nlist *nl));
#define _NLIST_H
#endif